home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 21 / PC Format CD-ROM Collection 21 (1995-12)(Future Publishing)(GB)[issue 51].iso / odyssey / ao_boot.txt < prev    next >
Text File  |  1995-10-02  |  4KB  |  108 lines

  1. This is a HOW TO Guide to making a boot disk.
  2.  
  3. If you are trying to run Alien Odyssey on a machine with 8 meg of 
  4. ram then you will need to ensure that as much of that 8 meg as
  5. possible is available to the game. For this reason you will need 
  6. to make a BOOT disk. That is, a disk that will allow you to boot 
  7. your machine with a minimum of memory used.
  8.  
  9. There now follows a step by step guide to making a boot disk, but 
  10. please note that this is an example of how to do it. In general 
  11. the setup of different PC's varies and your own setup is liable 
  12. to look rather different, e.g. the pathnames used in your PATH 
  13. statement, or where to find files or the installed directory of a 
  14. certain driver.
  15.  
  16. Step 1:
  17. Place a diskette in your A: drive.  The next step will destroy any 
  18. data on the disk, so a brand new blank floppy disk should be used.  
  19. Make sure that the disk is the same density as the drive (Use a 
  20. 1.44 MB disk in a High Density 3.5" drive, etc.).
  21.  
  22. Step 2:
  23. At the C: prompt, type FORMAT A: /S and press [ENTER].  The DOS 
  24. Format utility will format the disk and add the necessary DOS 
  25. files required to boot from the floppy disk.
  26.  
  27. Step 3:
  28. Change to drive A by typing A: and pressing [ENTER].  Then type 
  29. EDIT CONFIG.SYS and press [ENTER].  The DOS Edit program will 
  30. appear.
  31.  
  32. Type in the lines following [CONFIG.SYS] in the example below.
  33. When you have finished typing the lines, press ALT-F to bring up 
  34. the File menu, and then press X to Exit the DOS Edit program.  
  35. When it asks you if you want to save your file, choose Yes:
  36.  
  37. [CONFIG.SYS]
  38. DEVICE=C:\DOS\HIMEM.SYS
  39. DEVICE=C:\DOS\EMM386.EXE NOEMS
  40. DOS=UMB
  41. FILES=40
  42. BUFFERS=15,0
  43. STACKS=9,256
  44. DOS=HIGH
  45. DEVICEHIGH=C:\CDROMDRV\D011V109.SYS /D:MSCD000
  46.  
  47. In the CONFIG.SYS file shown above, replace the last line in the 
  48. example with the line from your current CONFIG.SYS file on drive 
  49. C: that runs your CD-ROM drivers.  It is important that you use 
  50. your CD-ROM line and not our example, otherwise your CD-ROM drive 
  51. will not function properly.  
  52.  
  53. You may also have special lines in your C:\CONFIG.SYS file that 
  54. help your sound card to function properly.  It is very important 
  55. that you copy those lines into this new file on A: so your sound 
  56. card will work.  Place the appropriate lines from your CONFIG.SYS 
  57. file at the end of the example shown above.
  58.  
  59. Step 4:
  60. Type EDIT AUTOEXEC.BAT and press [ENTER].  The DOS Edit program 
  61. will appear. Type in the lines following [AUTOEXEC.BAT] in the 
  62. example below.  When you are finished typing the lines, press 
  63. ALT-F to bring up the File menu, and then press X to Exit the DOS 
  64. Edit program.  When it asks you if you want to save your file, 
  65. choose Yes:
  66.  
  67. [AUTOEXEC.BAT]
  68. @ECHO OFF
  69. PROMPT $P$G
  70. SET PATH=C:\DOS;C:\VIDCARD;C:\SNDCARD
  71. LH C:\DOS\MSCDEX.EXE /D:MSCD000
  72. SET SOUND=C:\SBPRO
  73. SET BLASTER=A220 I7 D1 T4
  74. C:\MOUSE\MOUSE.EXE
  75. C:
  76. CD\ODYSSEY
  77. GAME
  78.  
  79. In the AUTOEXEC.BAT file shown above, you would replace line 4 
  80. with the line from your current AUTOEXEC.BAT file on drive C: that 
  81. loads your CD-ROM drivers.  It is important that you use your CD-
  82. ROM line and not our example, otherwise your CD-ROM drive will not 
  83. function properly.
  84.  
  85. You may also have special lines in your C:\AUTOEXEC.BAT file that 
  86. help your sound card to function properly.  It is very important 
  87. that you copy those lines into this new file on A: so your sound 
  88. card will work.  Replace the examples on lines 5 and 6 with the 
  89. appropriate lines from your AUTOEXEC.BAT file.
  90.  
  91. Additionally, if your graphics card requires a VESA driver it 
  92. should go here as well.
  93.  
  94. Step 5:
  95. Reboot your system with the boot disk still in drive A. The game 
  96. should start and everything should be working properly.  
  97.  
  98. NOTE:  Once this boot disk is finished and functioning properly,
  99.        and if you still do not have enough memory free, use it
  100.        to boot up your system and then run the DOS MEMMAKER
  101.        utility with the boot disk in the drive.  MEMMAKER will
  102.        ensure that you have squeezed every little bit of RAM out
  103.        of the boot disk.  Run the DOS command MEM before and after
  104.        running MEMMAKER to see what kind of memory increase you
  105.        get from this step.
  106.  
  107.  
  108.